home *** CD-ROM | disk | FTP | other *** search
/ Practical Algorithms for Image Analysis / Practical Algorithms for Image Analysis.iso / TARFILE.GZ / tarfile / libtiff / port / Makefile.in < prev    next >
Encoding:
Makefile  |  1999-09-11  |  1.9 KB  |  68 lines

  1. #! smake
  2. #    $Header: /usr/people/sam/tiff/port/RCS/Makefile.in,v 1.6 1996/03/18 20:55:51 sam Rel $
  3. #
  4. # @WARNING@
  5. #
  6. # Tag Image File Format Library
  7. #
  8. # Copyright (c) 1995-1996 Sam Leffler
  9. # Copyright (c) 1995-1996 Silicon Graphics, Inc.
  10. # Permission to use, copy, modify, distribute, and sell this software and 
  11. # its documentation for any purpose is hereby granted without fee, provided
  12. # that (i) the above copyright notices and this permission notice appear in
  13. # all copies of the software and related documentation, and (ii) the names of
  14. # Sam Leffler and Silicon Graphics may not be used in any advertising or
  15. # publicity relating to the software without the specific, prior written
  16. # permission of Sam Leffler and Silicon Graphics.
  17. # THE SOFTWARE IS PROVIDED "AS-IS" AND WITHOUT WARRANTY OF ANY KIND, 
  18. # EXPRESS, IMPLIED OR OTHERWISE, INCLUDING WITHOUT LIMITATION, ANY 
  19. # WARRANTY OF MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.  
  20. # IN NO EVENT SHALL SAM LEFFLER OR SILICON GRAPHICS BE LIABLE FOR
  21. # ANY SPECIAL, INCIDENTAL, INDIRECT OR CONSEQUENTIAL DAMAGES OF ANY KIND,
  22. # OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  23. # WHETHER OR NOT ADVISED OF THE POSSIBILITY OF DAMAGE, AND ON ANY THEORY OF 
  24. # LIABILITY, ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE 
  25. # OF THIS SOFTWARE.
  26. #
  27. SRCDIR    = @RELSRCDIR@/port
  28. VPATH    = @RELSRCDIR@/port
  29.  
  30. #
  31. # VERSION:    @VERSION@
  32. # DATE:        @DATE@
  33. # TARGET:    @TARGET@
  34. # CCOMPILER:    @CCOMPILER@
  35. #
  36.  
  37. SHELL    = @SCRIPT_SH@
  38. NULL    =
  39. CC    = @CCOMPILER@
  40. AR    = @AR@
  41. AROPTS    = @AROPTS@
  42. RANLIB    = @RANLIB@
  43.  
  44. IPATH    = -I. -I${SRCDIR}
  45. COPTS    = @GCOPTS@
  46. OPTIMIZER=-O
  47. CFLAGS    = @ENVOPTS@ ${COPTS} ${OPTIMIZER} ${IPATH}
  48.  
  49. CFILES    = @PORTFUNCS@
  50. OBJECTS    = ${CFILES:.c=.o}
  51. TARGETS    = libport.a
  52.  
  53. default all: ${TARGETS}
  54.  
  55. libport.a: ${OBJECTS}
  56.     @rm -f $@;
  57.     ${AR} ${AROPTS} $@ ${OBJECTS}
  58.     ${RANLIB} $@
  59. ${PORT}/libport.a: libport.a
  60.  
  61. install: default
  62.  
  63. clean:
  64.     rm -f ${TARGETS} ${OBJS} core a.out
  65.